640eba1f87881ccdadec0d57c3b33f254b28e5ca,java/org/apache/jasper/runtime/JspContextWrapper.java,JspContextWrapper,getAttributeNamesInScope,#number#,234
Before Change
@Override
public Enumeration<String> getAttributeNamesInScope(int scope) {
if (scope == PAGE_SCOPE) {
return new Enumerator<String>(pageAttributes.keySet().iterator());
}
return invokingJspCtxt.getAttributeNamesInScope(scope);
After Change
@Override
public Enumeration<String> getAttributeNamesInScope(int scope) {
if (scope == PAGE_SCOPE) {
return Collections.enumeration(pageAttributes.keySet());
}
return invokingJspCtxt.getAttributeNamesInScope(scope);